projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9fed2ec
)
* emacs-lisp/cl-indent.el (lisp-indent-259): Fix last fix.
author
Chong Yidong
<cyd@stupidchicken.com>
Fri, 27 Oct 2006 00:52:06 +0000
(
00:52
+0000)
committer
Chong Yidong
<cyd@stupidchicken.com>
Fri, 27 Oct 2006 00:52:06 +0000
(
00:52
+0000)
lisp/emacs-lisp/cl-indent.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/cl-indent.el
b/lisp/emacs-lisp/cl-indent.el
index 679a9bb68fdf5a6795f21d93a7e824cc19afc306..f09b72f396fde2561497a62506cf97beaf43f26e 100644
(file)
--- a/
lisp/emacs-lisp/cl-indent.el
+++ b/
lisp/emacs-lisp/cl-indent.el
@@
-373,7
+373,9
@@
If nil, indent backquoted lists as data, i.e., like quoted lists."
;; Too few elements in pattern.
(throw 'exit normal-indent)))
((eq tem 'nil)
- (throw 'exit normal-indent))
+ (throw 'exit (if (consp normal-indent)
+ normal-indent
+ (list normal-indent containing-form-start))))
((eq tem '&lambda)
(throw 'exit
(cond ((null p)